home *** CD-ROM | disk | FTP | other *** search
ASP.NET Web Form | 2008-01-01 | 3.8 KB | 73 lines |
- <%@ Page language="c#" Debug="true" Inherits="gbweb.Photo" CodeFile="Photo.aspx.cs" culture="auto" uiculture="auto" %>
- <%@ Register TagPrefix="gbpvr" TagName="Header" Src="Header.ascx" %>
- <%@ Register TagPrefix="gbpvr" TagName="Footer" Src="Footer.ascx" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <HTML>
- <HEAD>
- <title>GBPVR - Photo Viewer</title>
- <link rel="stylesheet" type="text/css" href="<%=Convert.ToString(Session["theme"])%>/styles.css">
- <link rel="shortcut icon" type="image/gif" href="<%=Convert.ToString(Session["theme"])%>/favicon.gif">
- <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
- <script language="javascript" type="text/javascript"></script>
- </HEAD>
- <body class="photo">
- <form id="formPhotoViewer" runat="server">
- <span runat="server" id="photoDiv">
- <table border="0" cellspacing="0" cellpadding="0" width="100%" class="photo">
- <tr>
- <td style="height: 30px" class="photo">
- <strong class="photo"> Size:</strong><asp:RadioButtonList ID="photo_Size" runat="server" AutoPostBack="True" RepeatDirection="Horizontal"
- RepeatLayout="Flow" Width="525px">
- <asp:ListItem Value="0">100%</asp:ListItem>
- <asp:ListItem Value="1">75%</asp:ListItem>
- <asp:ListItem Value="2">50%</asp:ListItem>
- <asp:ListItem Value="3">25%</asp:ListItem>
- <asp:ListItem Value="4">10%</asp:ListItem>
- </asp:RadioButtonList></td>
- </tr>
- <tr>
- <td style="height: 3px"><img src="public/t.gif" width="1" height="3" border="0">
- </td>
- </tr>
- <tr>
- <td style="height: 3px" class="photo">
- <strong class="photo"> Rotation:
- <img src="public/t.gif" width="1" height="3" border="0"></strong> <asp:RadioButtonList ID="photo_Rotation" runat="server" AutoPostBack="True" RepeatDirection="Horizontal"
- RepeatLayout="Flow" Width="816px">
- <asp:ListItem Selected="True" Value="0">None</asp:ListItem>
- <asp:ListItem Value="1">90 Degrees</asp:ListItem>
- <asp:ListItem Value="2">180 Degrees</asp:ListItem>
- <asp:ListItem Value="3">270 Degrees</asp:ListItem>
- </asp:RadioButtonList></td>
- </tr>
- <tr>
- <td style="height: 3px"><img src="public/t.gif" width="1" height="3" border="0">
- </td>
- </tr>
- <tr>
- <td class="photo">
- <img src="public/t.gif" width="15" height="1" border="0" class="photo">
- <asp:Label ID="photoInfo" runat="server" CssClass="photo" Width="855px"></asp:Label>
- </td>
- </tr>
- <tr>
- <td>
- <img src="public/t.gif" width="15" height="3" border="0">
- </td>
- </tr>
- <tr>
- <td>
- <img src="public/t.gif" width="15" height="1" border="0">
- <asp:Image ID="picture" runat="server" ImageUrl="public/t.gif" CssClass="photo" Height="240px" Width="379px" />
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- </table>
- </span>
- </form>
- </body>
- </HTML>
-